2007-09-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): Don't
assume that a path of depth 0 has no indices. (#467324, Szilard
Pfeiffer)
svn path=/trunk/; revision=18770
+2007-09-09 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
+ * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): Don't
+ assume that a path of depth 0 has no indices. (#467324, Szilard
+ Pfeiffer)
+
2007-09-09 18:22:28 Tim Janik <timj@gtk.org>
* gdk/x11/gdkgeometry-x11.c (_gdk_window_process_expose): fix invalid
g_return_if_fail (new_order != NULL);
- if (c_path == NULL || gtk_tree_path_get_indices (c_path) == NULL)
+ if (c_path == NULL || gtk_tree_path_get_depth (c_path) == 0)
{
length = gtk_tree_model_iter_n_children (c_model, NULL);
g_return_if_fail (new_order != NULL);
- if (s_path == NULL || gtk_tree_path_get_indices (s_path) == NULL)
+ if (s_path == NULL || gtk_tree_path_get_depth (s_path) = 0)
{
if (tree_model_sort->root == NULL)
return;